Package

Source Code of Test

import java.util.HashMap;

import weasel.compiler.WeaselCompiler;


public class Test {

  public static void main(String[] args){
    HashMap<String, String> sources = new HashMap<String, String>();
    sources.put("Test", "public class Test { public abstract int[][] i(}");
    sources.put("int", "public class int {}");
    WeaselCompiler compiler = new WeaselCompiler(sources);
    compiler.compile();
  }
 
}
TOP

Related Classes of Test

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.